From: Glenn Morris Date: Thu, 25 Aug 2011 05:37:55 +0000 (-0700) Subject: * lisp/emacs-lisp/derived.el (define-derived-mode): Doc fix. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~2485 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=704a3c4ed486a4e6ecb163b9fd2d0fdad9134042;p=emacs.git * lisp/emacs-lisp/derived.el (define-derived-mode): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 40c82e60c58..872302eec7f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -4,6 +4,8 @@ 2011-08-25 Glenn Morris + * emacs-lisp/derived.el (define-derived-mode): Doc fix. + * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag. (smtpmail-via-smtp): Handle nil response from smtp. diff --git a/lisp/emacs-lisp/derived.el b/lisp/emacs-lisp/derived.el index 4fda2bf1d52..81932f9940a 100644 --- a/lisp/emacs-lisp/derived.el +++ b/lisp/emacs-lisp/derived.el @@ -133,10 +133,10 @@ BODY can start with a bunch of keyword arguments. The following keyword Declare the customization group that corresponds to this mode. The command `customize-mode' uses this. :syntax-table TABLE - Use TABLE instead of the default. + Use TABLE instead of the default (CHILD-syntax-table). A nil value means to simply use the same syntax-table as the parent. :abbrev-table TABLE - Use TABLE instead of the default. + Use TABLE instead of the default (CHILD-abbrev-table). A nil value means to simply use the same abbrev-table as the parent. Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode: